home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / nasm095s.zip / LABELS.H < prev    next >
Text File  |  1997-07-27  |  690b  |  18 lines

  1. /* labels.h  header file for labels.c
  2.  *
  3.  * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
  4.  * Julian Hall. All rights reserved. The software is
  5.  * redistributable under the licence given in the file "Licence"
  6.  * distributed in the NASM archive.
  7.  */
  8.  
  9. int lookup_label (char *label, long *segment, long *offset);
  10. void define_label (char *label, long segment, long offset,
  11.            struct ofmt *ofmt, efunc error);
  12. void define_common (char *label, long segment, long size,
  13.             struct ofmt *ofmt, efunc error);
  14. void define_label_stub (char *label, efunc error);
  15. void declare_as_global (char *label, efunc error);
  16. int init_labels (void);
  17. void cleanup_labels (void);
  18.